home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1989 …il & Dave's Excellent CD
/
Excellent CD HFS.raw
/
Moof
/
Goodies
/
MPW Goodies
/
Interfaces
/
CIncludes
/
SetJmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-11-30
|
362 b
|
27 lines
|
[
TEXT/MPS
]
/*
SetJmp.h
Copyright Apple Computer, Inc. 1986-1988
All rights reserved.
*/
#ifndef __SETJMP__
#define __SETJMP__
typedef int *jmp_buf[12]; /* D2-D7,PC,A2-A4,A6,SP */
#ifdef __safe_link
extern "C" {
#endif
int __setjmp(jmp_buf env);
#define setjmp(env) __setjmp(env)
void longjmp(jmp_buf, int);
#ifdef __safe_link
}
#endif
#endif __SETJMP__